-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.java
62 lines (42 loc) · 1.58 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import java.io.IOException;
import java.util.Locale;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in).useLocale(Locale.US);
int aux;
double notas;
notas = sc.nextDouble();
int n = (int) notas;
int moedas = (int) ((notas - n) * 100);
if ((moedas * 1000) % 10 == 9) {
moedas++;
}
System.out.println("NOTAS:");
System.out.println(n / 100 + " nota(s) de R$ 100.00");
aux = n % 100;
System.out.println(aux / 50 + " nota(s) de R$ 50.00");
aux = aux % 50;
System.out.println(aux / 20 + " nota(s) de R$ 20.00");
aux = aux % 20;
System.out.println(aux / 10 + " nota(s) de R$ 10.00");
aux = aux % 10;
System.out.println(aux / 5 + " nota(s) de R$ 5.00");
aux = aux % 5;
System.out.println(aux / 2 + " nota(s) de R$ 2.00");
aux = aux % 2;
System.out.println("MOEDAS:");
System.out.println(aux + " moeda(s) de R$ 1.00");
moedas = moedas % 100;
System.out.println(moedas / 50 + " moeda(s) de R$ 0.50");
moedas = moedas % 50;
System.out.println(moedas / 25 + " moeda(s) de R$ 0.25");
moedas = moedas % 25;
System.out.println(moedas / 10 + " moeda(s) de R$ 0.10");
moedas = moedas % 10;
System.out.println(moedas / 5 + " moeda(s) de R$ 0.05");
moedas = moedas % 5;
System.out.println(moedas + " moeda(s) de R$ 0.01");
sc.close();
}
}